home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :start
- cls
- echo *****************************************************************************
- echo * S O P H I S T E C H R E S E A R C H P R E S E N T S *
- echo * *
- echo * The *
- echo * Virtual Reality Sourcebook *
- echo * Interactive Multimedia Database *
- echo * (VR StarterKit Version 1.0) *
- echo * *
- echo * Copyright (c) 1993 --- SophisTech Research *
- echo * *
- echo * We encourage you to tell your friends and associates about the Virtual *
- echo * Reality Sourcebook. For orders, call 1-(800) 4VR-SOURce *
- echo *****************************************************************************
- echo.
- echo Choose one of the selections below:
- echo.
- echo 1. RUN Virtural Reality Information.
- echo 2. SETUP the configuration. (Re-configure existing hardware)
- echo 3. QUIT.
- echo.
- echo Please enter the number for your choice; Enter 1-3 only.
- query
-
- if errorlevel = 4 goto invalid
- if errorlevel = 3 goto end
- if errorlevel = 2 goto reset
- if errorlevel = 1 goto run
-
- :invalid
- cls
- echo Invalid option
- goto start
- goto end
-
- REM Run game
- :run
- mode co80
- cls
- IF EXIST SETUP.VI goto STARTGAME
- install %1 %2 %3 %4 %5 %6 %7 %8 %9
- cls
- IF EXIST SETUP.VI goto STARTGAME
- goto SETUP
-
- :STARTGAME
- IF EXIST LPG.* goto RUNPROG
- @echo *
- @echo *
- @echo *
- @echo Please wait, Program decompressing and preparing runtime files
- runtime
- del lpg.*
- goto ENDPROG
- :SETUP
- @echo *
- @echo *
- @echo *
- @echo SETUP and system configuration is missing, please run SETUP option.
- @echo *
- @echo *
- @echo *
- pause
- goto start
- goto ENDPROG
- :RUNPROG
- del lpg.*
- @echo Please wait, Program decompressing and preparing runtime files
- runtime
- del lpg.*
- goto ENDPROG
- :ENDPROG
- cls
- goto end
-
- REM reconfig setup
- :reset
- cls
- echo.
- install %1 %2 %3 %4 %5 %6 %7 %8 %9
- goto start
- goto end
-
- :end
-
-
-